home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / thomas / thomas.lha / Thomas / Thomas-1.1 / src / runtime.scm < prev    next >
Text File  |  1992-09-18  |  3KB  |  64 lines

  1. ;*              Copyright 1992 Digital Equipment Corporation
  2. ;*                         All Rights Reserved
  3. ;*
  4. ;* Permission to use, copy, and modify this software and its documentation is
  5. ;* hereby granted only under the following terms and conditions.  Both the
  6. ;* above copyright notice and this permission notice must appear in all copies
  7. ;* of the software, derivative works or modified versions, and any portions
  8. ;* thereof, and both notices must appear in supporting documentation.
  9. ;*
  10. ;* Users of this software agree to the terms and conditions set forth herein,
  11. ;* and hereby grant back to Digital a non-exclusive, unrestricted, royalty-free
  12. ;* right and license under any changes, enhancements or extensions made to the
  13. ;* core functions of the software, including but not limited to those affording
  14. ;* compatibility with other hardware or software environments, but excluding
  15. ;* applications which incorporate this software.  Users further agree to use
  16. ;* their best efforts to return to Digital any such changes, enhancements or
  17. ;* extensions that they make and inform Digital of noteworthy uses of this
  18. ;* software.  Correspondence should be provided to Digital at:
  19. ;* 
  20. ;*            Director, Cambridge Research Lab
  21. ;*            Digital Equipment Corp
  22. ;*            One Kendall Square, Bldg 700
  23. ;*            Cambridge MA 02139
  24. ;* 
  25. ;* This software may be distributed (but not offered for sale or transferred
  26. ;* for compensation) to third parties, provided such third parties agree to
  27. ;* abide by the terms and conditions of this notice.  
  28. ;* 
  29. ;* THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL
  30. ;* WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
  31. ;* MERCHANTABILITY AND FITNESS.   IN NO EVENT SHALL DIGITAL EQUIPMENT
  32. ;* CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  33. ;* DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  34. ;* PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
  35. ;* ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  36. ;* SOFTWARE.
  37.  
  38. ; $Id: runtime.scm,v 1.22 1992/09/18 23:56:44 birkholz Exp $
  39.  
  40. (for-each dylan::load
  41.       '("class"            ; Dylan Class data type.
  42.         "generic"            ; Generic dispatch mechanism.
  43.         "class-structure"        ; The heterarchy.
  44.         "runtime-top"        ; Common parameter lists, etc.
  45.         "runtime-internal"        ; Procedures called by
  46.                     ; expansion of code, not by
  47.                     ; users
  48.         "runtime-methods"        ; Predefined methods
  49.         "runtime-functions"        ; Predefined functions and
  50.                     ; generic functions
  51.         "runtime-bitstrings"    ; Integers as bitstrings
  52.         "runtime-collections"    ; Collections, sequences, ...
  53.         "runtime-collections-iterate" ; Iteration + Collection Keys
  54.         "runtime-collections-generic1" ; Collection generic functions 
  55.         "runtime-collections-generic2" ; More generic collection operations.
  56.         "runtime-collections-array"    ; Arrays
  57.         "runtime-collections-deque"    ; Deques
  58.         "runtime-collections-list"    ; Lists
  59.         "runtime-collections-range"    ; Ranges
  60.         "runtime-collections-string" ; Strings
  61.         "runtime-collections-table"    ; Tables
  62.         "runtime-collections-vector" ; Vectors
  63.         "runtime-exceptions"))    ; Exceptions
  64.